home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / comersus_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  78 lines

  1. #
  2. # Script by Noam Rathaus
  3. #
  4. # From: "Thomas Ryan" <tommy@providesecurity.com>
  5. # Date: 7.7.2004 18:10
  6. # Subject: Comersus Cart Cross-Site Scripting Vulnerability
  7.  
  8. if(description)
  9. {
  10.  script_id(12640);
  11.  script_bugtraq_id(10674);
  12.  script_version("$Revision: 1.3 $");
  13.  
  14.  name["english"] = "Comersus Cart Cross-Site Scripting Vulnerability";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. The malicious user is able to compromise the parameters to invoke a
  20. Cross-Site Scripting attack. This can be used to take advantage of the trust
  21. between a client and server allowing the malicious user to execute malicious
  22. JavaScript on the client's machine or perform a denial of service shutting
  23. down IIS.
  24.  
  25. Solution: Upgrade to version 5.098 or newer
  26. Risk factor: Medium";
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Checks for the presence of an XSS bug in Comersus";
  31.  
  32.  script_summary(english:summary["english"]);
  33.  
  34.  script_category(ACT_ATTACK);
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2004 Noam Rathaus");
  37.  family["english"] = "CGI abuses : XSS";
  38.  family["francais"] = "Abus de CGI";
  39.  script_family(english:family["english"], francais:family["francais"]);
  40.  script_dependencie("cross_site_scripting.nasl", "http_version.nasl");
  41.  script_require_ports("Services/www", 80);
  42.  exit(0);
  43. }
  44.  
  45. #
  46. # The script code starts here
  47. #
  48.  
  49.  
  50. include("http_func.inc");
  51. include("http_keepalive.inc");
  52.  
  53. port = get_http_port(default:80);
  54.  
  55. if(!get_port_state(port))exit(0);
  56. if(!can_host_asp(port:port))exit(0);
  57. if (  get_kb_item(string("www/", port, "/generic_xss")) ) exit(0);
  58.  
  59. function check(loc)
  60. {
  61.  req = http_get(item:string(loc, "/comersus_message.asp?message=%3Ciframe%20src=%22http://no.where.land%22%3E%3C/iframe%3E"), port:port);
  62.  
  63.  r = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  64.  if( r == NULL )exit(0);
  65.  if('<iframe src="http://no.where.land"></iframe>' >< r ) 
  66.  {
  67.      security_warning(port);
  68.     exit(0);
  69.  }
  70. }
  71.  
  72. check(loc:"/comersus/store");
  73. foreach dir (cgi_dirs())
  74. {
  75.  check(loc:dir);
  76. }
  77.  
  78.